4cda8e7946b7c0a821ab584865ba4407722c616c,backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtInput.java,GwtInput,handleEvent,#NativeEvent#,488
Before Change
this.touchY[0] += getMovementYJSNI(e);
} else {
this.deltaX[0] = (int)getRelativeX(e, canvas) - touchX[0];
this.deltaY[0] = (int)getRelativeY(e, canvas) - touchY[0];
this.touchX[0] = (int)getRelativeX(e, canvas);
this.touchY[0] = (int)getRelativeY(e, canvas);
}
After Change
this.touchY[0] += getMovementYJSNI(e);
} else {
this.deltaX[0] = getRelativeX(e, canvas) - touchX[0];
this.deltaY[0] = getRelativeY(e, canvas) - touchY[0];
this.touchX[0] = getRelativeX(e, canvas);
this.touchY[0] = getRelativeY(e, canvas);
}